home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / readers / utils / gui4cli / demos / wait.g < prev   
Text File  |  1996-10-28  |  516b  |  22 lines

  1. G4C
  2.  
  3. ; This is just a little borderless window, centered on the screen, with
  4. ; a box around it, displaying the message "Please wait..", or any other,
  5. ; if you thereafter change the TEXT gadget contents. (from another GUI).
  6.  
  7.  
  8. winbig -1 -1 150 30 ""
  9. wintype 000010
  10. winbackground SOLID 3 0
  11.  
  12. BOX 0 0 0 0 OUT BUTTON
  13.  
  14. CTEXT 15 17 "Please wait.." times.font 12 2 3 011
  15.  
  16. xOnRMB                ; We close the window on Right Mouse Button..
  17. GuiClose wait.g
  18.  
  19. xOnInactive           ; or if it becomes inactive.
  20. GuiClose wait.g
  21.  
  22.